home *** CD-ROM | disk | FTP | other *** search
/ Megahits 6 / Megahits 6 (1995)(GTI - Rhein-Main-Soft)(DE)(Disc 2 of 2)[!].iso / time_ungepackt / time_301_330 / time328 / clipmaster / install clipmaster < prev    next >
Text File  |  1995-07-15  |  2KB  |  72 lines

  1. ; Install-Script für ClipMaster
  2. ;
  3. ; © 1994 Holger Engels
  4. ;
  5. ; $VER:ClipMasterInstall 1.01 DEMO (28-JUL-94)
  6. ;
  7.  
  8. (set @app-name "ClipMaster 1.01 DEMO")
  9.  
  10. (set @language "deutsch")
  11.  
  12. (welcome "Willkommen zur Installation von ClipMaster V1.01 DEMO")
  13.  
  14. (set Ok 0)
  15.  
  16. (complete 0)
  17.  
  18. (set @default-dest "SYS:")
  19.  
  20. (if (askchoice (prompt "Soll ClipMaster beim Hochfahren des Rechners automatisch aktiviert werden?")
  21.                (help @askchoices-help)
  22.                (choices "automatisch aktivieren"
  23.                         "manuell starten")
  24.                (default 0))
  25.  
  26.    (copyfiles (prompt "Kopiere ClipMaster Commodity...")
  27.               (help (cat "ClipMaster Commodity wird auf Ihre Festplatte kopiert\n\n" @copyfiles-help))
  28.               (source "TIME_328:ClipMaster/Commodities")
  29.               (dest "SYS:Tools/Commodities")
  30.               (pattern "ClipMaster")
  31.               (infos))
  32.  
  33.    (copyfiles (prompt "Kopiere ClipMaster Commodity...")
  34.               (help (cat "ClipMaster Commodity wird auf Ihre Festplatte kopiert\n\n" @copyfiles-help))
  35.               (source "TIME_328:ClipMaster/Commodities")
  36.               (dest "SYS:WBStartup")
  37.               (pattern "ClipMaster")
  38.               (infos))
  39. )
  40.  
  41. (complete 40)
  42.  
  43. (copyfiles (prompt "Kopiere ClipMaster Preferences...")
  44.            (help (cat "ClipMaster Preferences wird in Ihr Preferences Verzeichnis kopiert\n\n" @copyfiles-help))
  45.            (source "TIME_328:ClipMaster/Preferences")
  46.            (dest "SYS:Prefs")
  47.            (pattern "ClipMaster")
  48.            (infos))
  49.  
  50. (complete 70)
  51.  
  52. (if (askbool (prompt "Soll ein Beispiel für eine Clip Liste zum Testen installiert werden?")
  53.              (help @askbool-help)
  54.              (default 0))
  55.  
  56.    ((copyfiles (prompt "Kopiere ClipMaster.prefs...")
  57.                (help (cat "ClipMaster Preferences wird in Ihr ENVARC: Verzeichnis kopiert\n\n" @copyfiles-help))
  58.                (source "TIME_328:env")
  59.                (dest "ENVARC:")
  60.                (pattern "ClipMaster.prefs"))
  61.     (copyfiles (prompt "Kopiere ClipMaster.prefs...")
  62.                (help (cat "ClipMaster Preferences wird in Ihr ENV: Verzeichnis kopiert\n\n" @copyfiles-help))
  63.                (source "TIME_328:env")
  64.                (dest "ENV:")
  65.                (pattern "ClipMaster.prefs"))
  66.    )
  67. )
  68.  
  69. (complete 100)
  70.  
  71. (exit)
  72.